home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / dskut / aspisrc.zip / GETOPT.C < prev    next >
C/C++ Source or Header  |  1992-01-26  |  18KB  |  597 lines

  1. /* Getopt for GNU.
  2.    Copyright (C) 1987, 1989, 1990, 1991 Free Software Foundation, Inc.
  3.  
  4.    This program is free software; you can redistribute it and/or modify
  5.    it under the terms of the GNU General Public License as published by
  6.    the Free Software Foundation; either version 2, or (at your option)
  7.    any later version.
  8.  
  9.    This program is distributed in the hope that it will be useful,
  10.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.    GNU General Public License for more details.
  13.  
  14.    You should have received a copy of the GNU General Public License
  15.    along with this program; if not, write to the Free Software
  16.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  17.  
  18. #ifdef __STDC__
  19. #define CONST const
  20. #else
  21. #define CONST
  22. #endif
  23.  
  24. /* This version of `getopt' appears to the caller like standard Unix `getopt'
  25.    but it behaves differently for the user, since it allows the user
  26.    to intersperse the options with the other arguments.
  27.  
  28.    As `getopt' works, it permutes the elements of `argv' so that,
  29.    when it is done, all the options precede everything else.  Thus
  30.    all application programs are extended to handle flexible argument order.
  31.  
  32.    Setting the environment variable _POSIX_OPTION_ORDER disables permutation.
  33.    Then the behavior is completely standard.
  34.  
  35.    GNU application programs can use a third alternative mode in which
  36.    they can distinguish the relative order of options and other arguments.  */
  37.  
  38. #include <stdio.h>
  39.  
  40. /* If compiled with GNU C, use the built-in alloca */
  41. #ifdef __GNUC__
  42. #define alloca __builtin_alloca
  43. #else /* not __GNUC__ */
  44. #ifdef sparc
  45. #include <alloca.h>
  46. #else
  47. #ifdef _AIX
  48. #pragma alloca
  49. #else
  50. char *alloca ();
  51. #endif
  52. #endif /* sparc */
  53. #endif /* not __GNUC__ */
  54.  
  55. #if defined(STDC_HEADERS) || defined(__GNU_LIBRARY__)
  56. #include <stdlib.h>
  57. #else /* STDC_HEADERS or __GNU_LIBRARY__ */
  58. char *getenv ();
  59. char *malloc ();
  60. #endif /* STDC_HEADERS or __GNU_LIBRARY__ */
  61.  
  62. #if defined(USG) || defined(STDC_HEADERS) || defined(__GNU_LIBRARY__) || defined(MSDOS)
  63. #include <string.h>
  64. #define bcopy(s, d, n) memcpy ((d), (s), (n))
  65. #define index strchr
  66. #else /* USG or STDC_HEADERS or __GNU_LIBRARY__ */
  67. #ifdef VMS
  68. #include <string.h>
  69. #else /* VMS */
  70. #include <strings.h>
  71. #endif /* VMS */
  72. /* Declaring bcopy causes errors on systems whose declarations are different.
  73.    If the declaration is omitted, everything works fine.  */
  74. #endif /* USG or STDC_HEADERS or __GNU_LIBRARY__ */
  75.  
  76. /* For communication from `getopt' to the caller.
  77.    When `getopt' finds an option that takes an argument,
  78.    the argument value is returned here.
  79.    Also, when `ordering' is RETURN_IN_ORDER,
  80.    each non-option ARGV-element is returned here.  */
  81.  
  82. char *optarg = 0;
  83.  
  84. /* Index in ARGV of the next element to be scanned.
  85.    This is used for communication to and from the caller
  86.    and for communication between successive calls to `getopt'.
  87.  
  88.    On entry to `getopt', zero means this is the first call; initialize.
  89.  
  90.    When `getopt' returns EOF, this is the index of the first of the
  91.    non-option elements that the caller should itself scan.
  92.  
  93.    Otherwise, `optind' communicates from one call to the next
  94.    how much of ARGV has been scanned so far.  */
  95.  
  96. int optind = 0;
  97.  
  98. /* The next char to be scanned in the option-element
  99.    in which the last option character we returned was found.
  100.    This allows us to pick up the scan where we left off.
  101.  
  102.    If this is zero, or a null string, it means resume the scan
  103.    by advancing to the next ARGV-element.  */
  104.  
  105. static char *nextchar;
  106.  
  107. /* Callers store zero here to inhibit the error message
  108.    for unrecognized options.  */
  109.  
  110. int opterr = 1;
  111.  
  112. /* Describe how to deal with options that follow non-option ARGV-elements.
  113.  
  114.    If the caller did not specify anything,
  115.    the default is REQUIRE_ORDER if the environment variable
  116.    _POSIX_OPTION_ORDER is defined, PERMUTE otherwise.
  117.  
  118.    REQUIRE_ORDER means don't recognize them as options;
  119.    stop option processing when the first non-option is seen.
  120.    This is what Unix does.
  121.    This mode of operation is selected by either setting the environment
  122.    variable _POSIX_OPTION_ORDER, or using `+' as the first character
  123.    of the list of option characters.
  124.  
  125.    PERMUTE is the default.  We permute the contents of ARGV as we scan,
  126.    so that eventually all the non-options are at the end.  This allows options
  127.    to be given in any order, even with programs that were not written to
  128.    expect this.
  129.  
  130.    RETURN_IN_ORDER is an option available to programs that were written
  131.    to expect options and other ARGV-elements in any order and that care about
  132.    the ordering of the two.  We describe each non-option ARGV-element
  133.    as if it were the argument of an option with character code 1.
  134.    Using `-' as the first character of the list of option characters
  135.    selects this mode of operation.
  136.  
  137.    The special argument `--' forces an end of option-scanning regardless
  138.    of the value of `ordering'.  In the case of RETURN_IN_ORDER, only
  139.    `--' can cause `getopt' to return EOF with `optind' != ARGC.  */
  140.  
  141. static enum
  142. {
  143.   REQUIRE_ORDER, PERMUTE, RETURN_IN_ORDER
  144. } ordering;
  145.  
  146. /* Describe the long-named options requested by the application.
  147.    _GETOPT_LONG_OPTIONS is a vector of `struct option' terminated by an
  148.    element containing a name which is zero.
  149.    The field `has_arg' is 1 if the option takes an argument,
  150.    2 if it takes an optional argument.  */
  151.  
  152. struct option
  153. {
  154.   char *name;
  155.   int has_arg;
  156.   int *flag;
  157.   int val;
  158. };
  159.  
  160. CONST struct option *_getopt_long_options;
  161.  
  162. int _getopt_long_only = 0;
  163.  
  164. /* Index in _GETOPT_LONG_OPTIONS of the long-named option actually found.
  165.    Only valid when a long-named option was found. */
  166.  
  167. int option_index;
  168.  
  169. /* Handle permutation of arguments.  */
  170.  
  171. /* Describe the part of ARGV that contains non-options that have
  172.    been skipped.  `first_nonopt' is the index in ARGV of the first of them;
  173.    `last_nonopt' is the index after the last of them.  */
  174.  
  175. static int first_nonopt;
  176. static int last_nonopt;
  177.  
  178. /* Exchange two adjacent subsequences of ARGV.
  179.    One subsequence is elements [first_nonopt,last_nonopt)
  180.     which contains all the non-options that have been skipped so far.
  181.    The other is elements [last_nonopt,optind), which contains all
  182.     the options processed since those non-options were skipped.
  183.  
  184.    `first_nonopt' and `last_nonopt' are relocated so that they describe
  185.     the new indices of the non-options in ARGV after they are moved.  */
  186.  
  187. static void
  188. exchange (argv)
  189.      char **argv;
  190. {
  191.   int nonopts_size = (last_nonopt - first_nonopt) * sizeof (char *);
  192.   char **temp = (char **) alloca (nonopts_size);
  193.  
  194.   /* Interchange the two blocks of data in ARGV.  */
  195.  
  196.   bcopy (&argv[first_nonopt], temp, nonopts_size);
  197.   bcopy (&argv[last_nonopt], &argv[first_nonopt],
  198.      (optind - last_nonopt) * sizeof (char *));
  199.   bcopy (temp, &argv[first_nonopt + optind - last_nonopt], nonopts_size);
  200.  
  201.   /* Update records for the slots the non-options now occupy.  */
  202.  
  203.   first_nonopt += (optind - last_nonopt);
  204.   last_nonopt = optind;
  205. }
  206.  
  207. /* Scan elements of ARGV (whose length is ARGC) for option characters
  208.    given in OPTSTRING.
  209.  
  210.    If an element of ARGV starts with '-', and is not exactly "-" or "--",
  211.    then it is an option element.  The characters of this element
  212.    (aside from the initial '-') are option characters.  If `getopt'
  213.    is called repeatedly, it returns successively each of the option characters
  214.    from each of the option elements.
  215.  
  216.    If `getopt' finds another option character, it returns that character,
  217.    updating `optind' and `nextchar' so that the next call to `getopt' can
  218.    resume the scan with the following option character or ARGV-element.
  219.  
  220.    If there are no more option characters, `getopt' returns `EOF'.
  221.    Then `optind' is the index in ARGV of the first ARGV-element
  222.    that is not an option.  (The ARGV-elements have been permuted
  223.    so that those that are not options now come last.)
  224.  
  225.    OPTSTR